home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getuid.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  1KB  |  55 lines

  1. /* 
  2.  * getuid.c --
  3.  *
  4.  *    Source code for the getuid library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: getuid.c,v 1.2 88/07/29 17:40:58 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <proc.h>
  22. #include "compatInt.h"
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * getuid --
  27.  *
  28.  *    Procedure to map from Unix getuid system call to Sprite Proc_GetIDs.
  29.  *
  30.  * Results:
  31.  *    UNIX_ERROR is returned upon error, with the actual error code
  32.  *    stored in errno.  Upon success, the real user ID of the current
  33.  *    process is returned.
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. getuid()
  43. {
  44.     ReturnStatus status;    /* result returned by Proc_GetIDs */
  45.     int userId;            /* real user ID of current process */
  46.  
  47.     status = Proc_GetIDs((int *) NULL, (int *) NULL, &userId, (int *) NULL);
  48.     if (status != SUCCESS) {
  49.     errno = Compat_MapCode(status);
  50.     return(UNIX_ERROR);
  51.     } else {
  52.     return(userId);
  53.     }
  54. }
  55.